std::forward_list::reverse
From Cppreference
< cpp | container | forward list
| void reverse();
| (C++0x feature) | |
Reverses the order of the elements in the container. No references or iterators become invalidated.
Contents |
Parameters
(none)
Return value
(none)
Example
| This section is incomplete |
Complexity
linear in the size of the container
See also
| sorts the elements (public member function) | |